home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Purity / Purity #42 (1995-01)(PackMAN)(DE)[WB].zip / Purity #42 (1995-01)(PackMAN)(DE)[WB].adf / Includes3v1 / Includes3v1.lha / Utils / TaskUtils.i < prev    next >
Text File  |  1994-12-04  |  377b  |  17 lines

  1.  
  2. {
  3.         TaskUtils.i
  4.  
  5.         Declares the Task support routines CreateTask and DeleteTask.
  6.         The source for these routines is under Runtime/Extras.
  7. }
  8.  
  9. {$I   "Include:Exec/Tasks.i"}
  10.  
  11. Function CreateTask(name : String; pri : Byte;
  12.                         initPC : Address; stackSize : Integer) : TaskPtr;
  13.     External;
  14.  
  15. Procedure DeleteTask(tc : TaskPtr);
  16.     External;
  17.